7f34352a3ad5aa56126dfda0d2bd6274fc541194,plugins/IntelliLang/src/org/intellij/plugins/intelliLang/inject/quickedit/QuickEditAction.java,MyHandler,initMarkers,#Place#,254

Before Change


      }
      boolean first = true;
      for (Pair<RangeMarker, RangeMarker> markers : myMarkers.values()) {
        if (first) {
          markers.first.setGreedyToLeft(true);
          markers.second.setGreedyToLeft(true);
        }
        markers.first.setGreedyToRight(true);
        markers.second.setGreedyToRight(true);

After Change


      for (Pair<RangeMarker, RangeMarker> markers : myMarkers.values()) {
        //if (first) {
          markers.first.setGreedyToLeft(true);
          markers.second.setGreedyToLeft(true);
        //}
        markers.first.setGreedyToRight(true);
        markers.second.setGreedyToRight(true);